/* assets/css/infrastructure-cabling.css - FAMILIAR THEME + SLIGHTLY UNIQUE */

/* UPDATE: Replace --accent color in infrastructure-cabling.css */

:root {
  --primary: #012970;
  --accent: #fcb614; /* ✅ YOUR THEME COLOR */
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text: #475569;
  --text-light: #64748b;
}

/* Hero - SAME LAYOUT */
.cabling-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-badge {
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  font-family: sans-serif;
}

.main-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.hero-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 450px;
  font-family: sans-serif;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  font-family: sans-serif;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Familiar Section Styles */
.cabling-explained,
.why-hexaroot,
.services-section,
.cable-types-section,
.coverage-section,
.standards-section {
  padding: 100px 0;
}

.cabling-explained,
.why-hexaroot,
.coverage-section {
  background: var(--white);
}
.services-section,
.cable-types-section {
  background: var(--bg-light);
}
.standards-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: sans-serif;
}

.section-header p {
  color: var(--text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* Text Content */
.cabling-text-content,
.why-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cabling-main-text p,
.why-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0;
}

.cabling-main-text strong,
.why-content strong {
  color: var(--primary);
}

/* Services Grid - SAME */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  padding: 32px 24px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* UNIQUE: Cable Types - Horizontal List */
.cable-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.cable-type-item {
  background: linear-gradient(135deg, var(--accent), #047857);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
}

.cable-type-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(5, 150, 105, 0.4);
}

/* Coverage Grid - SAME */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.coverage-item {
  padding: 32px 24px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.coverage-item:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.coverage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.coverage-item h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.coverage-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Standards Grid - UNIQUE */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.standard-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.standard-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.standard-badge {
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.standard-label {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0px;
  }

  .hero-image {
    order: -1;
  }

  .cable-types-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .cabling-hero {
    padding: 80px 20px 60px;
  }

  .cabling-explained,
  .why-hexaroot,
  .services-section,
  .cable-types-section,
  .coverage-section,
  .standards-section {
    padding: 20px 0;
  }

  .hero-stats {
    flex-direction: row !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .stat-item {
    flex: 1 !important;
    min-width: 90px !important;
  }

  .stat-number {
    font-size: 22px !important;
  }
  .stat-label {
    font-size: 12px !important;
  }
  .main-title {
    font-size: 26px;
  }

  .cables-grid,
  .coverage-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }
}
